home *** CD-ROM | disk | FTP | other *** search
- #ifndef __LANGUAGEFEATURES__
- #define __LANGUAGEFEATURES__
- #pragma once
-
- #include <ConditionalMacros.h>
-
- // provide default values here
-
- #ifndef EXPLICIT_SUPPORTED
- #define EXPLICIT_SUPPORTED 0
- #endif
-
- #ifndef BOOL_SUPPORTED
- #define BOOL_SUPPORTED 1
- #endif
-
- #ifndef MEMBER_TEMPLATES_SUPPORTED
- #define MEMBER_TEMPLATES_SUPPORTED 0
- #endif
-
- #ifndef WORK_AROUND_REFERENCE_BUG
- #define WORK_AROUND_REFERENCE_BUG 1
- #endif
-
- #if !EXPLICIT_SUPPORTED
- #define explicit
- #endif
-
- #ifndef __CODEWARRIORSUCKS__
- #include "CodeWarriorSucks.h"
- #endif
-
- #endif __LANGUAGEFEATURES__
-